home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
a_utils
/
_archvrs
/
unix
/
unzip51
/
zip.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-11-04
|
378b
|
15 lines
/* This is a dummy zip.h to allow crypt.c from Zip to compile for UnZip */
#ifndef __zip_h /* don't include more than once */
#define __zip_h
#include "unzip.h"
#define UNZIP /* don't include time.h again in crypt.c; etc. */
#define local static
#define CRC32(c, b) (crc_32_tab[((int)(c) ^ (b)) & 0xff] ^ ((c) >> 8))
extern ulg crc_32_tab[];
#endif /* !__zip_h */